home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / gnu / gnpltsrc.lha / fnproto.h < prev    next >
Text File  |  1996-01-22  |  2KB  |  94 lines

  1. /*
  2.  * $Id: fnproto.h,v 1.3 1994/08/28 11:11:47 alex Exp $
  3.  *
  4.  */
  5.  
  6. /* prototypes for gnuplot function primitives. These functions are not called
  7.    directly, only via a function table.
  8. */
  9.  
  10. /* Prototypes from file "internal.c" */
  11.  
  12. void f_push __P((union argument *x));
  13. void f_pushc __P((union argument *x));
  14. void f_pushd1 __P((union argument *x));
  15. void f_pushd2 __P((union argument *x));
  16. void f_pushd __P((union argument *x));
  17. void f_call __P((union argument *x));
  18. void f_calln __P((union argument *x));
  19. void f_lnot __P((void));
  20. void f_bnot __P((void));
  21. void f_bool __P((void));
  22. void f_lor __P((void));
  23. void f_land __P((void));
  24. void f_bor __P((void));
  25. void f_xor __P((void));
  26. void f_band __P((void));
  27. void f_uminus __P((void));
  28. void f_eq __P((void));
  29. void f_ne __P((void));
  30. void f_gt __P((void));
  31. void f_lt __P((void));
  32. void f_ge __P((void));
  33. void f_le __P((void));
  34. void f_plus __P((void));
  35. void f_minus __P((void));
  36. void f_mult __P((void));
  37. void f_div __P((void));
  38. void f_mod __P((void));
  39. void f_power __P((void));
  40. void f_factorial __P((void));
  41. int f_jump __P((union argument *x));
  42. int f_jumpz __P((union argument *x));
  43. int f_jumpnz __P((union argument *x));
  44. int f_jtern __P((union argument *x));
  45.  
  46. /* Prototypes from file "standard.c" */
  47.  
  48. void f_real __P((void));
  49. void f_imag __P((void));
  50. void f_int __P((void));
  51. void f_arg __P((void));
  52. void f_conjg __P((void));
  53. void f_sin __P((void));
  54. void f_cos __P((void));
  55. void f_tan __P((void));
  56. void f_asin __P((void));
  57. void f_acos __P((void));
  58. void f_atan __P((void));
  59. void f_sinh __P((void));
  60. void f_cosh __P((void));
  61. void f_tanh __P((void));
  62. void f_void __P((void));
  63. void f_abs __P((void));
  64. void f_sgn __P((void));
  65. void f_sqrt __P((void));
  66. void f_exp __P((void));
  67. void f_log10 __P((void));
  68. void f_log __P((void));
  69. void f_floor __P((void));
  70. void f_ceil __P((void));
  71. void f_besj0 __P((void));
  72. void f_besj1 __P((void));
  73. void f_besy0 __P((void));
  74. void f_besy1 __P((void));
  75.  
  76. /* Prototypes from file "specfun.c" */
  77.  
  78. void f_erf __P((void));
  79. void f_erfc __P((void));
  80. void f_ibeta __P((void));
  81. void f_igamma __P((void));
  82. void f_gamma __P((void));
  83. void f_lgamma __P((void));
  84. void f_rand __P((void));
  85. void f_normal __P((void));
  86. void f_inverse_normal __P((void));
  87. void f_inverse_erf __P((void));
  88.  
  89. /* prototypes from file "datafile.c" */
  90.  
  91. void f_dollars __P((union argument *x));
  92. void f_column  __P((void));
  93. void f_valid   __P((void));
  94.